home *** CD-ROM | disk | FTP | other *** search
/ PC Player 2004 May / pc player 2004-05.iso / Demos / FarCry / Data1.cab / _7A3BE2DD308D42B4A3851388C1F14E31 < prev    next >
Encoding:
Text File  |  2004-01-06  |  454 b   |  35 lines

  1.  
  2. #include "../CGVPMacro.csi"
  3.  
  4. VertAttributes 
  5.   POSITION_3 
  6.   TEXCOORD0_2 
  7.   TANG_3X3 
  8. }
  9.  
  10. MainInput 
  11.   VIEWPROJ_MATRIX, 
  12.   CAMERA_POS 
  13. }
  14.  
  15. DeclarationsScript
  16. {
  17.   IN_T0_TANG
  18.   OUT_T0_T1_T2
  19. }
  20.  
  21. PositionScript = PosCommon
  22.  
  23. CoreScript
  24. {
  25.   OUT.Tex0.xy = IN.TexCoord0.xy;
  26.   OUT.Tex1.xy = IN.TexCoord0.xy;
  27.  
  28.   TANG_MATR
  29.  
  30.   float3 lightVec = CameraPos.xyz - vPos.xyz;
  31.   OUT.Tex2.xyz = mul(objToTangentSpace, lightVec.xyz);
  32. }
  33.